home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Games / Hugo / Library / verbstub.g < prev    next >
Text File  |  1997-04-16  |  4KB  |  132 lines

  1. !----------------------------------------------------------------------------
  2. !
  3. !     Grammar for Verb Stub Routines v2.3.2 by Kent Tessman (c) 1995-1997
  4. !                      for use with Hugo Compiler v2.3
  5. !
  6. !----------------------------------------------------------------------------
  7. !
  8. ! This grammar file must be included along with the standard grammar file
  9. ! at the start of the game file (before any executable code); GRAMMAR.G 
  10. ! does this if the VERBSTUBS flag is set.
  11. !
  12. !----------------------------------------------------------------------------
  13.  
  14. #version 2.3
  15.  
  16. xverb "yes"
  17.     *                                       DoYes
  18.  
  19. xverb "no"
  20.     *                                       DoNo
  21.  
  22. xverb "sorry"
  23.     *                                       DoSorry
  24.  
  25. verb "use"      
  26.     * object                                DoUse
  27.  
  28. verb "smell", "sniff", "inhale", "breathe"
  29.     *                                       DoSmell
  30.     * object                                DoSmell
  31.  
  32. verb "jump", "leap", "hop"
  33.     *                                       DoJump
  34.  
  35. verb "wave"
  36.     *                                       DoWaveHands
  37.     * "hands"                               DoWaveHands
  38.     * "to" object                           DoWaveHands
  39.     * held                                  DoWave
  40.  
  41. verb "throw", "hurl", "toss"
  42.     *                                       DoVague
  43.     * held                                  DoThrowAt
  44.     * held "at" xobject                     DoThrowAt
  45.  
  46. verb "climb"
  47.     *                                       DoClimb
  48.     * "in"/"into"/"inside" object           DoEnter
  49.     * "in"/"inside"                         DoEnter
  50.     * "on"/"onto" object                    DoEnter
  51.     * "off"/"offof" object                  DoExit
  52.     * "down"/"out"/"outside"                DoExit
  53.     * "up"/"down" object                    DoClimb
  54.     * object                                DoClimb
  55.  
  56. verb "sleep", "rest", "nap", "snooze"
  57.     *                                       DoSleep
  58.  
  59. verb "push", "shove"
  60.     *                                       DoVague
  61.     * "on" object                           DoPush
  62.     * object                                DoPush
  63.  
  64. verb "pull", "yank", "tug"
  65.     *                                       DoVague
  66.     * "on" object                           DoPull
  67.     * object                                DoPull
  68.  
  69. verb "kiss", "hug"
  70.     *                                       DoVague
  71.     * object                                DoKiss
  72.  
  73. verb "swim", "dive"
  74.     *                                       DoSwim
  75.  
  76. verb "wake", "awake", "awaken"
  77.     *                                       DoWake
  78.     * "up"                                  DoWake
  79.     * "up" living                           DoWakeCharacter
  80.     * living                                DoWakeCharacter
  81.  
  82. verb "touch", "feel"
  83.     *                                       DoVague
  84.     * object                                DoTouch
  85.  
  86. verb "tie", "attach", "fasten", "lash"
  87.     *                                       DoVague
  88.     * object                                DoTie
  89.     * object "to" xobject                   DoTie
  90.     * object "with" held                    DoTie
  91.  
  92. verb "untie", "detach", "unfasten", "unlash"
  93.     *                                       DoVague
  94.     * object                                DoUntie
  95.     * object "from" xobject                 DoUntie
  96.  
  97. verb "burn", "light", "incinerate"
  98.     *                                       DoVague
  99.     * object                                DoBurn
  100.     * object "with" held                    DoBurn
  101.  
  102. verb "set"
  103.     * "fire" "to" object                    DoBurn
  104.     * object "on" "fire"                    DoBurn
  105.     * object "ablaze"                       DoBurn
  106.  
  107. verb "cut", "slice", "chop", "sever"
  108.     *                                       DoVague
  109.     * object                                DoCut
  110.     * object "with" held                    DoCut
  111.  
  112. verb "dig", "burrow"
  113.     *                                       DoVague
  114.     * "in"/"into" object                    DoDig
  115.     * "in"/"into" object "with" held        DoDig
  116.     * object                                DoDig
  117.     * object "with" held                    DoDig
  118.  
  119. verb "yell", "shout", "scream", "bellow", "cry"
  120.     *                                       DoYell
  121.  
  122. verb "search"
  123.     *                                       DoVague
  124.     * "for" object                          DoVague
  125.     * "in" object                           DoSearch
  126.     * object                                DoSearch
  127.  
  128. xverb "help"                                    
  129.     *                                       DoHelp
  130.     * object                                DoHelpChar
  131.  
  132.